Replace _LIBCPP_HAS_NO_DELETED_FUNCTIONS with _LIBCPP_CXX03_LANG git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@291278 91177308-0d34-0410-b5e6-96231b3b80d8 
diff --git a/include/__config b/include/__config index 962ada5..7254745 100644 --- a/include/__config +++ b/include/__config 
@@ -275,10 +275,6 @@  # define _LIBCPP_NORETURN __attribute__ ((noreturn))  #endif   -#if !(__has_feature(cxx_deleted_functions)) -#define _LIBCPP_HAS_NO_DELETED_FUNCTIONS -#endif // !(__has_feature(cxx_deleted_functions)) -  #if !(__has_feature(cxx_lambdas))  #define _LIBCPP_HAS_NO_LAMBDAS  #endif @@ -431,7 +427,6 @@    #ifndef __GXX_EXPERIMENTAL_CXX0X__  #define _LIBCPP_HAS_NO_DECLTYPE -#define _LIBCPP_HAS_NO_DELETED_FUNCTIONS  #define _LIBCPP_HAS_NO_NULLPTR  #define _LIBCPP_HAS_NO_UNICODE_CHARS  #define _LIBCPP_HAS_NO_VARIADICS @@ -448,7 +443,6 @@    #if _GNUC_VER < 404  #define _LIBCPP_HAS_NO_DECLTYPE -#define _LIBCPP_HAS_NO_DELETED_FUNCTIONS  #define _LIBCPP_HAS_NO_UNICODE_CHARS  #define _LIBCPP_HAS_NO_VARIADICS  #define _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS @@ -483,7 +477,6 @@  #if _MSC_VER <= 1800  #define _LIBCPP_HAS_NO_UNICODE_CHARS  #endif -#define _LIBCPP_HAS_NO_DELETED_FUNCTIONS  #define _LIBCPP_HAS_NO_NOEXCEPT  #define __alignof__ __alignof  #define _LIBCPP_NORETURN __declspec(noreturn) @@ -739,7 +732,7 @@  #define _LIBCPP_DEFAULT = default;  #endif   -#ifdef _LIBCPP_HAS_NO_DELETED_FUNCTIONS +#ifdef _LIBCPP_CXX03_LANG  #define _LIBCPP_EQUAL_DELETE  #else  #define _LIBCPP_EQUAL_DELETE = delete